encoding/binary.coder.order (field)
9 uses
encoding/binary (current package)
binary.go#L326: d := &decoder{order: order, buf: make([]byte, size)}
binary.go#L457: e := &encoder{order: order, buf: buf}
binary.go#L531: order ByteOrder
binary.go#L566: x := d.order.Uint16(d.buf[d.offset : d.offset+2])
binary.go#L572: e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
binary.go#L577: x := d.order.Uint32(d.buf[d.offset : d.offset+4])
binary.go#L583: e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
binary.go#L588: x := d.order.Uint64(d.buf[d.offset : d.offset+8])
binary.go#L594: e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |